home *** CD-ROM | disk | FTP | other *** search
- unit Unit2;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, EPHints;
-
- type
- TForm2 = class(TForm)
- Edit1: TEdit;
- EPHints1: TEPHints;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form2: TForm2;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action:=caFree;
- end;
-
- end.
-